[Docker] Docker tag


Docker tag

  • With the following command, we create a new image from the old docker tag, and assign it to a new docker tag.
      docker tag ad-website:latest ad-website:1
    
  • After we do this, we get two images referencing the same docker tag, which help us not lose the previous image's version when we create a new image tagged with the same tag(usually latest).
      docker build -t ad-website:latest .
    
#docker






你可能感興趣的文章

[VSCode] 在 Remote-SSH 時使用 power mode 效果

[VSCode] 在 Remote-SSH 時使用 power mode 效果

每日心得筆記 2020-06-20(六)

每日心得筆記 2020-06-20(六)

簡明約耳趣談軟體(Joel on Software)導讀書摘

簡明約耳趣談軟體(Joel on Software)導讀書摘






留言討論